home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 2000 August / Designer's Club 2000 August.iso / pc / DC Users Guide / Tutorials / Flash_Tutorial.exe / Flash_Tutorial.DXR / 00162.ls < prev    next >
Encoding:
Text File  |  2000-06-29  |  439 b   |  28 lines

  1. on mouseEnter me
  2.   cursor(280)
  3. end
  4.  
  5. on mouseLeave me
  6.   cursor(-1)
  7. end
  8.  
  9. on mouseUp me
  10.   puppetSound(1, "buttonclick")
  11.   cursor(-1)
  12.   if the spriteNum of me = 4 then
  13.     go("lesson1")
  14.   end if
  15.   if the spriteNum of me = 5 then
  16.     go("lesson2")
  17.   end if
  18.   if the spriteNum of me = 6 then
  19.     go("lesson3")
  20.   end if
  21.   if the spriteNum of me = 7 then
  22.     go("lesson4")
  23.   end if
  24.   if the spriteNum of me = 8 then
  25.     go("lesson5")
  26.   end if
  27. end
  28.